home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update23.zoo / include / hdiffs
Encoding:
Text File  |  1992-07-22  |  5.2 KB  |  165 lines

  1. diff -urb /usr/users/michal/ST/cross-gcc/include/PatchLev.h include/PatchLev.h
  2. --- /usr/users/michal/ST/cross-gcc/include/PatchLev.h    Mon Jun  8 11:04:07 1992
  3. +++ include/PatchLev.h    Mon Jul 20 16:17:36 1992
  4. @@ -1,5 +1,5 @@
  5.  
  6. -#define    PatchLevel "81"
  7. +#define    PatchLevel "82"
  8.  
  9.  /*
  10.   *
  11. diff -urb /usr/users/michal/ST/cross-gcc/include/gdbm.h include/gdbm.h
  12. --- /usr/users/michal/ST/cross-gcc/include/gdbm.h    Mon Jun  8 11:40:37 1992
  13. +++ include/gdbm.h    Mon Jul 20 16:17:36 1992
  14. @@ -26,6 +26,7 @@
  15.          phone:  (206) 676-3035
  16.         
  17.  *************************************************************************/
  18. +
  19.  #ifdef __cplusplus
  20.  extern "C" {
  21.  #endif
  22. diff -urb /usr/users/michal/ST/cross-gcc/include/math.h include/math.h
  23. --- /usr/users/michal/ST/cross-gcc/include/math.h    Mon Jun  8 11:04:21 1992
  24. +++ include/math.h    Mon Jul 20 16:17:38 1992
  25. @@ -76,6 +76,20 @@
  26.      double        retval; /* val to return */
  27.  };
  28.  
  29. +#define M_LN2        0.69314718055994530942
  30. +#define M_PI        3.14159265358979323846
  31. +#define M_SQRT2        1.41421356237309504880
  32. +#define M_E        2.7182818284590452354
  33. +#define M_LOG2E        1.4426950408889634074
  34. +#define M_LOG10E    0.43429448190325182765
  35. +#define M_LN10        2.30258509299404568402
  36. +#define M_PI_2        1.57079632679489661923
  37. +#define M_PI_4        0.78539816339744830962
  38. +#define M_1_PI        0.31830988618379067154
  39. +#define M_2_PI        0.63661977236758134308
  40. +#define M_2_SQRTPI    1.12837916709551257390
  41. +#define M_SQRT1_2    0.70710678118654752440
  42. +
  43.  #endif /* __STRICT_ANSI__ */
  44.  
  45.  extern const double _infinitydf;    /* in normdf.cpp */
  46. diff -urb /usr/users/michal/ST/cross-gcc/include/memory.h include/memory.h
  47. --- /usr/users/michal/ST/cross-gcc/include/memory.h    Mon Jun  8 11:04:21 1992
  48. +++ include/memory.h    Mon Jul 20 16:17:38 1992
  49. @@ -14,8 +14,14 @@
  50.  typedef _SIZE_T size_t;
  51.  #endif
  52.  
  53. -#ifdef __GNUC__
  54. -#  ifndef alloca
  55. +#ifndef alloca
  56. +#  ifndef __GNUC__
  57. +#    ifndef __cplusplus
  58. +        __EXTERN void *alloca __PROTO((size_t));
  59. +#    else
  60. +        __EXTERN void *alloca __PROTO((long unsigned int));
  61. +#    endif
  62. +#  else
  63.  #    define alloca(X) __builtin_alloca(X)
  64.  #  endif
  65.  #endif
  66. diff -urb /usr/users/michal/ST/cross-gcc/include/signal.h include/signal.h
  67. --- /usr/users/michal/ST/cross-gcc/include/signal.h    Mon Jun  8 11:14:55 1992
  68. +++ include/signal.h    Mon Jul 20 16:17:38 1992
  69. @@ -50,8 +50,8 @@
  70.  typedef void (*__Sigfunc) __PROTO((int signum));
  71.  typedef short sig_atomic_t;
  72.  
  73. -#define       SIG_DFL    (__Sigfunc)0L
  74. -#define       SIG_IGN    (__Sigfunc)1L
  75. +#define       SIG_DFL    ((__Sigfunc)0L)
  76. +#define       SIG_IGN    ((__Sigfunc)1L)
  77.  #define       SIG_ERR    ((__Sigfunc)-1L)
  78.  
  79.  __EXTERN __Sigfunc    signal    __PROTO((int sig, __Sigfunc func));
  80. diff -urb /usr/users/michal/ST/cross-gcc/include/stdlib.h include/stdlib.h
  81. --- /usr/users/michal/ST/cross-gcc/include/stdlib.h    Mon Jun  8 11:04:31 1992
  82. +++ include/stdlib.h    Mon Jul 20 16:17:40 1992
  83. @@ -62,16 +62,25 @@
  84.  __EXTERN void *realloc __PROTO((void *_r, size_t n));
  85.  __EXTERN void *calloc __PROTO((size_t n, size_t sz));
  86.  #ifndef __STRICT_ANSI__
  87. -#ifndef alloca
  88. +
  89. +#  ifndef alloca
  90. +#    ifndef __GNUC__
  91.  #  ifndef __cplusplus
  92.      __EXTERN void *alloca __PROTO((size_t));
  93.  #  else
  94.      __EXTERN void *alloca __PROTO((long unsigned int));
  95. +#      endif /* __cplusplus */
  96. +#    else
  97. +#      define alloca(X) __builtin_alloca(X)
  98. +#    endif /* __GNUC__ */
  99. +#  endif /* alloca */
  100. +
  101. +#  ifdef atarist
  102. +     __EXTERN void _malloczero __PROTO((int yes));
  103. +     __EXTERN void _mallocChunkSize __PROTO((size_t siz));
  104.  #  endif
  105. -#endif
  106. -__EXTERN void _malloczero __PROTO((int yes));
  107. -__EXTERN void _mallocChunkSize __PROTO((size_t siz));
  108. -#endif
  109. +
  110. +#endif /* __STRICT_ANSI__ */
  111.  
  112.  __EXTERN __EXITING abort __PROTO((void));
  113.  #ifndef __cplusplus
  114. diff -urb /usr/users/michal/ST/cross-gcc/include/string.h include/string.h
  115. --- /usr/users/michal/ST/cross-gcc/include/string.h    Mon Jun  8 11:04:32 1992
  116.  
  117. diff -urb /usr/users/michal/ST/cross-gcc/include/termcap.h include/termcap.h
  118. --- /usr/users/michal/ST/cross-gcc/include/termcap.h    Mon Jun 15 19:55:42 1992
  119. +++ include/termcap.h    Mon Jul 20 16:17:40 1992
  120. @@ -28,7 +28,7 @@
  121.  __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
  122.  
  123.  #ifdef __cplusplus
  124. -extern "C" {
  125. +}
  126.  #endif
  127.  
  128.  #endif /* _TERMCAP_H */
  129. diff -urb /usr/users/michal/ST/cross-gcc/include/vdibind.h include/vdibind.h
  130. --- /usr/users/michal/ST/cross-gcc/include/vdibind.h    Mon Jun  8 11:04:36 1992
  131. +++ include/vdibind.h    Mon Jul 20 16:17:42 1992
  132. @@ -398,18 +398,17 @@
  133.  __EXTERN void    vqt_cachesize __PROTO(( int handle, int which_cache,
  134.                         size_t *size ));
  135.  
  136. -
  137.  /*
  138. -* bezier curves stuff
  139. -*/
  140. + * bezier curves stuff
  141. + */
  142.  __EXTERN void v_set_app_buff __PROTO((void **buf_p, int size));
  143.  
  144.  __EXTERN int v_bez __PROTO((int handle, int count,
  145. -int *xyarr, char *bezarr,
  146. -int extent[4], int *npts, int *nmvs));
  147. +                     int *xyarr, char *bezarr,
  148. +                 int extent[4], int *npts, int *nmvs));
  149.  __EXTERN int v_bez_fill __PROTO((int handle, int count,
  150. -int *xyarr, char *bezarr,
  151. -int extent[4], int *npts, int *nmvs));
  152. +                 int *xyarr, char *bezarr,
  153. +                 int extent[4], int *npts, int *nmvs));
  154.  __EXTERN int v_bez_qual __PROTO((int handle, int percent, int *actual));
  155.  
  156.  #ifdef ALTERNATE
  157. @@ -424,7 +423,6 @@
  158.  __EXTERN int v_bez_on __PROTO((int handle));
  159.  __EXTERN void v_bez_off __PROTO((int handle));
  160.  #endif /* ALTERNATE */
  161.  
  162.  #ifdef __cplusplus
  163.  }
  164.